home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-10-30 | 835 b | 35 lines | [TEXT/MPS ] |
- #
- # DeepFind - a script MPButton
- # Searches for the current selection in text files recursively, starting in the working directory
- #
- #
- # © 1996 Soften
- #
-
- # Case sensitive search can be invoked using:
- #
- # - a click with no modifs, or
- # - Control-Command-H shortcut
-
- #MPB AREA 0
- #MPB SHORTCUT Control-Command-H
- Set currSel "``Catenate "{{Active}}".§``"
- If "{{currSel}}" != ""
- Search "{{currSel}}" `Files -o -f -r -t TEXT ":"` -s >> "{Worksheet}" && Open "{Worksheet}"
- End
- Unset currSel
-
-
- # Case insensitive search can be invoked using:
- #
- # - Option-click, or
- # - Control-Option-Command-H shortcut
-
- #MPB MODIFS Option
- #MPB SHORTCUT Control-Option-Command-H
- Set currSel "``Catenate "{{Active}}".§``"
- If "{{currSel}}" != ""
- Search "{{currSel}}" `Files -o -f -r -t TEXT ":"` -i >> "{Worksheet}" && Open "{Worksheet}"
- End
- Unset currSel
-